encoding/binary.coder.buf (field)
19 uses
encoding/binary (current package)
binary.go#L267: d := &decoder{order: order, buf: make([]byte, size)}
binary.go#L268: if _, err := io.ReadFull(r, d.buf); err != nil {
binary.go#L307: d := &decoder{order: order, buf: buf[:size]}
binary.go#L412: e := &encoder{order: order, buf: buf}
binary.go#L443: e := &encoder{order: order, buf: buf}
binary.go#L468: e := &encoder{order: order, buf: pos}
binary.go#L745: buf []byte
binary.go#L753: x := d.buf[d.offset]
binary.go#L760: e.buf[e.offset] = 1
binary.go#L762: e.buf[e.offset] = 0
binary.go#L768: x := d.buf[d.offset]
binary.go#L774: e.buf[e.offset] = x
binary.go#L779: x := d.order.Uint16(d.buf[d.offset : d.offset+2])
binary.go#L785: e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
binary.go#L790: x := d.order.Uint32(d.buf[d.offset : d.offset+4])
binary.go#L796: e.order.PutUint32(e.buf[e.offset:e.offset+4], x)
binary.go#L801: x := d.order.Uint64(d.buf[d.offset : d.offset+8])
binary.go#L807: e.order.PutUint64(e.buf[e.offset:e.offset+8], x)
binary.go#L965: clear(e.buf[e.offset : e.offset+n])
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |